-- card: 24134 from stack: in -- bmap block id: 0 -- flags: 0000 -- background id: 4755 -- name: -- part contents for background part 4 ----- text ----- As suggested by the integer representation of characters, characters and integers may be (carefully!) mixed in expressions to accomplish certain tasks: int i; char c; i = 12; c = 'a' + i - 1; (The above assigns c the character which occupies the (i-1)th position after the character 'a' in the machine's character set. In most character sets, and assuming i is no greater than 26, c will then represent the ith letter of the alphabet.) Character STRINGS are represented as arrays of characters in C. This will be discussed later in this chapter. -- part contents for background part 7 ----- text ----- 56